projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a8ff968
)
board: ti: dra7xx: add FIT image TEE processing
author
Andrew F. Davis
<
[email protected]
>
Tue, 29 Nov 2016 22:33:25 +0000
(16:33 -0600)
committer
Tom Rini
<
[email protected]
>
Sat, 3 Dec 2016 18:21:22 +0000
(13:21 -0500)
Populate the corresponding TEE image processing call to be
performed during FIT loadable processing.
Signed-off-by: Andrew F. Davis <
[email protected]
>
Reviewed-by: Simon Glass <
[email protected]
>
Reviewed-by: Tom Rini <
[email protected]
>
board/ti/dra7xx/evm.c
patch
|
blob
|
history
diff --git
a/board/ti/dra7xx/evm.c
b/board/ti/dra7xx/evm.c
index 0490fd545273061603ea3500bac58e0c8b9ae79e..31c52a6afb809f11d36b850b00f5a42d297dcf68 100644
(file)
--- a/
board/ti/dra7xx/evm.c
+++ b/
board/ti/dra7xx/evm.c
@@
-855,4
+855,11
@@
void board_fit_image_post_process(void **p_image, size_t *p_size)
{
secure_boot_verify_image(p_image, p_size);
}
+
+void board_tee_image_process(ulong tee_image, size_t tee_size)
+{
+ secure_tee_install((u32)tee_image);
+}
+
+U_BOOT_FIT_LOADABLE_HANDLER(IH_TYPE_TEE, board_tee_image_process);
#endif